home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super OZ Shareware: Games
/
SuperOZ Shareware, Games Volume 1.iso
/
BOARD
/
CWF_1.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-10-06
|
863b
|
44 lines
@echo off
rem
rem start install for diskette based distribution
rem
cls
echo ===== Cross Word Finder v1.2 installation ========
echo .
rem parameters:
rem %1 from drive
rem %2 to drive
rem %3 to path
if x%1 == x goto sendinfo
if x%2 == x goto sendinfo
if x%3 == x goto sendinfo
%2
md \%3
cd \%3
:d1
echo Place disk 1 in drive %1
pause
if not exist %1cwf0002.dat goto e1
copy %1*.*
if errorlevel 1 goto end
install1 %1
goto end
:sendinfo
echo command usage for INSTALL.BAT
echo .
echo INSTALL d1 d2 path
echo .
echo . d1 is the "from" drive
echo . d2 is to "to" drive
echo . path is the "to" pathname
echo .
echo . EXAMPLE: INSTALL a: c: CWF
echo .
echo . All parameters must be specified.
goto end
:e1
echo Wrong diskette inserted
goto d1
:end
echo .